OnlinePresentationSessionResult

@Serializable
data class OnlinePresentationSessionResult(val sessionId: String, val challenge: String? = null, val mobileCredentialResponse: MobileCredentialResponse? = null, val error: OnlinePresentationResultError? = null)

Represents the result of an online presentation session.

Constructors

Link copied to clipboard
constructor(sessionId: String, challenge: String? = null, mobileCredentialResponse: MobileCredentialResponse? = null, error: OnlinePresentationResultError? = null)

Properties

Link copied to clipboard
val challenge: String? = null

The unique challenge of the session, if any.

Link copied to clipboard

The error that occurred during the session, if any.

Link copied to clipboard

The response received from the mobile credential, if any.

Link copied to clipboard
val sessionId: String

The unique identifier of the session.